/* ===============================
   ADVISORY BOARD – PREMIUM UI
================================ */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
/* SECTION */
.advisory-board-section {
    padding: 50px 20px;
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
    overflow: hidden;
}

/* TITLE */
.advisory-board-title h1 {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1f2937;
    position: relative;
}

.advisory-board-title h1::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff5a5f, #ff8a00);
    display: block;
    margin: 12px auto 0;
    border-radius: 50px;
}

.advisory-board-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #6b7280;
    margin-bottom: 50px;
}

/* GRID */
.advisory-board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.custom-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px 25px;
    text-align: center;
    position: relative;
    overflow: hidden !important;
    border: 2px solid transparent;
    background-image:
        linear-gradient(#fff, #fff), linear-gradient(135deg, #ff5a5f, #ff9800);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Hover Effect */
.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.custom-card-img {
    width: 120px;
    height: 120px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff5a5f;
    background: #fff;
    transition: 0.4s;
}

.custom-card:hover .custom-card-img {
    transform: scale(1.05);
}

.custom-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAME */
.custom-card-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
    color: #1f2937;
}

/* LINE */
.custom-card-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #ff5a5f, #ff9800);
    margin: 12px auto;
    border-radius: 10px;
}

/* PLUS ICON */
.custom-card-plus {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ff5a5f, #ff9800);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.custom-card-plus:hover {
    transform: rotate(90deg);
}

/* BIO */
.custom-card-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-top: 12px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.custom-card:hover .custom-card-bio {
    opacity: 1;
    max-height: 800px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .advisory-board-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .advisory-board-grid {
        grid-template-columns: 1fr;
    }

    .advisory-board-title h1 {
        font-size: 2rem;
    }
}
